home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-08-01 | 1.4 KB | 38 lines |
- package com.symantec.itools.vcafe.beans;
-
- public class ObjectReferenceAttributes
- {
- /**
- * Object Reference Properties (ORP) are properties that refer to objects
- * All ORPs have Default as a choice
- * Default means no code generation will occur for this property
- * They have the options of None, which will generate a set<property>(null)
- */
-
- /**
- * Boolean attribute (default is false)
- * If true the ORP will include the choice of None
- * This means it will generate a set<property>(null)
- */
- public static final String OBJECTREFERENCE_HAS_NONE_ATTRIBUTE = "objectReferenceHasNone";
-
- /**
- * Boolean attribute (default is false)
- * If true the ORP will change the name of the Default choice to None
- * You cannot have this option true, if OBJECTREFERENCE_HAS_NONE_ATTRIBUTE is true
- */
- public static final String OBJECTREFERENCE_DEFAULT_IS_NONE_ATTRIBUTE = "objectReferenceDefaultIsNone";
-
- /**
- * Boolean attribute (default is true)
- * Scope of a ORP is the allowed range for references
- */
- public static final String OBJECTREFERENCE_SCOPE_IS_ROOT_ATTRIBUTE = "objectReferenceScopeIsRoot";
-
- /**
- * Boolean attribute (default is false)
- *
- */
- public static final String OBJECTREFERENCE_SHOW_POSSIBLE_COMPONENT_REFERENCES_ATTRIBUTE = "objectReferenceShowPossibleComponentReferences";
- }
-